home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendar-task-editing.js < prev    next >
Text File  |  2008-03-03  |  4KB  |  90 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Sun Microsystems code.
  15.  *
  16.  * The Initial Developer of the Original Code is Sun Microsystems.
  17.  * Portions created by the Initial Developer are Copyright (C) 2007
  18.  * the Initial Developer. All Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *   Michael Buettner <michael.buettner@sun.com>
  22.  *   Philipp Kewisch <mozilla@kewis.ch>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /**
  39.  * Used by the "quick add" feature for tasks, for example in the task view or
  40.  * the uniinder-todo.
  41.  */
  42. var taskEdit = {
  43.     onFocus: function tE_onFocus(aEvent) {
  44.         var edit = aEvent.target;
  45.         if (edit.localName == "input") {
  46.             // For some reason, we only recieve an onfocus event for the textbox
  47.             // when debugging with venkman.
  48.             edit = edit.parentNode.parentNode;
  49.         }
  50.         if (!edit.savedInstructions) {
  51.             edit.savedInstructions = edit.getAttribute("instructions");
  52.         }
  53.         edit.value = edit.savedValue || "";
  54.         edit.removeAttribute("instructions");
  55.     },
  56.     
  57.     onBlur: function tE_onBlur(aEvent) {
  58.         var edit = aEvent.target;
  59.         if (edit.localName == "input") {
  60.             // For some reason, we only recieve the blur event for the input
  61.             // element. There are no targets that point to the textbox. Go up
  62.             // the parent chain until we reach the textbox.
  63.             edit = edit.parentNode.parentNode;
  64.         }
  65.         edit.savedValue = edit.value;
  66.         edit.value = edit.savedInstructions;
  67.         edit.setAttribute("instructions", edit.savedInstructions);
  68.     },
  69.  
  70.     onKeyPress: function tE_onKeyPress(aEvent) {
  71.         if (aEvent.keyCode == Components.interfaces.nsIDOMKeyEvent.DOM_VK_RETURN) {
  72.             var edit = aEvent.target;
  73.             if (edit.value && edit.value.length > 0) {
  74.                 var item = createTodo();
  75.                 item.calendar = getSelectedCalendar();
  76.                 item.title = edit.value;
  77.                 edit.value = "";
  78.                 setDefaultAlarmValues(item);
  79.                 doTransaction('add', item, item.calendar, null, {
  80.                     onOperationComplete: function(calendar, status, opType, id, detail) {
  81.                         if (Components.isSuccessCode(status)) {
  82.                             checkForAttendees(detail, null);
  83.                         }
  84.                     }
  85.                 });
  86.             }
  87.         }
  88.     }
  89. };
  90.